home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000067_news@newsmaster….columbia.edu _Tue Jul 15 20:08:11 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id UAA12693
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 15 Jul 1997 20:08:09 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id UAA14512
  7.     for kermit.misc@watsun; Tue, 15 Jul 1997 20:08:09 -0400 (EDT)
  8. Path: news.columbia.edu!panix!newsgate.nytimes.com!news.fred.net!news.iac.net!news.gv.tsc.tdk.com!hub.org!news.maxwell.syr.edu!news.sgi.com!news.tamu.edu!news.utdallas.edu!newnews.metronet.com!fiinix.metronet.com!not-for-mail
  9. From: tyde@medtrodnet.cdom (Tye McQueen)
  10. Newsgroups: comp.unix.unixware.misc,comp.protocols.kermit.misc
  11. Subject: Re: kermit setup help
  12. Date: 15 Jul 1997 13:03:50 -0500
  13. Organization: Texas Metronet, Inc  (login info (214/488-2590 - 817/571-0400))
  14. Lines: 79
  15. Message-ID: <5qge26$19b@fiinix.metronet.com>
  16. References: <ECuxHo.tA@encore.com>
  17. NNTP-Posting-Host: 192.245.137.7
  18. Xref: news.columbia.edu comp.unix.unixware.misc:23829 comp.protocols.kermit.misc:7335
  19.  
  20. [E-mailed and posted.  comp.protocols.kermit.misc added.]
  21.  
  22. tma@encore.com (Thanh Ma) writes:
  23. ) I would appreciate if you could save me some time in learning how to
  24. ) best configure kermit....
  25. ) I would like to do file transfer between 2 UnixWare machines with 2 identical
  26. ) 33.6 modems using latest kermit release. What is the best setup ? I could
  27. ) achieve at most 950 CPS using the below setup on both sides:
  28. ) set modem type rocketwell-v34
  29. ) set window-size 2
  30. ) set packet-length 512
  31. ) set file type binary
  32. ) I tried different window sizes and different packet lenghts but the above
  33. ) seem to be best (not too good to me) so far.
  34.  
  35. You probably already have a macro called "fast" that you should
  36. look at...
  37.  
  38. Two major suggestions:
  39.  
  40.     Use much bigger packets.
  41.     Disable most or all control prefixing.
  42.  
  43. If you have a fairly recent version of kermit (must be true
  44. since you can set window size), you can set the packet length
  45. into the thousands.  I believe that you need to set both packet
  46. lengths separately:
  47.  
  48.     set send packet 9024
  49.     set rece packet 9024
  50.  
  51. The default for kermit is to send most or all control characters
  52. as two characters.  This is called control prefixing.  It is very
  53. nice for when something between the kermits wants to interpret
  54. some control characters, but it does slow things down.  The simple
  55. way to change this is via either:
  56.  
  57.     set prefix minimal
  58. or
  59.     set prefix none
  60.  
  61. You can see the effect of these commands via:
  62.  
  63.     show control
  64.  
  65. And you can fine tune them with:
  66.  
  67.     set control ...
  68.  
  69. See "help set control" for more information.
  70.  
  71. If you are sure that nothing in the middle wants X-ON/X-OFF
  72. handshaking, then I bet you can use "set prefix none" in the
  73. configuration you describe.  I bet you can use "set prefix
  74. minimal" in your situation right now.  You can probably even
  75. go as far as:
  76.  
  77.     set prefix none
  78.     set control prefix 17 19
  79.  
  80. When testing this you need to make sure you are sending
  81. files with all possible character values.  Otherwise you'll
  82. think it is working fine and later one certain file will
  83. refuse to send.
  84.  
  85. ) And BTW, how to automate the setup, so that I don't have to enter those
  86. ) commands everytime I run kermit. (I know, I need to get the C-Kermit book
  87. ) one day)
  88.  
  89. Kermit will read $HOME/.kermrc at start-up and run any commands in
  90. it.
  91. --
  92. Tye McQueen    Nothing is obvious unless you are overlooking something
  93.          http://www.metronet.com/~tye/ (scripts, links, nothing fancy)
  94.        Remove d's from address to reply (sorry for the inconvenience).